home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / Anwendun / Pov / POVTOOLS / ATSIS / MARBTILE.POV < prev    next >
Encoding:
Text File  |  1994-08-29  |  486 b   |  31 lines

  1. // Marble tile picture for SIS
  2. // render size: 96x470
  3.  
  4. #include "colors.inc"
  5.  
  6. camera {
  7.   location  <0, 0, -2>
  8.   direction <0, 0, 1.5>
  9.   up        <0, 1, 0>
  10.   right     <96/470, 0, 0>
  11.   look_at   <0, 0, 2>
  12. }
  13.  
  14. plane {
  15.   z, 0
  16.   texture {
  17.     pigment {
  18.       marble
  19.       turbulence .8
  20.       scale .02
  21.       rotate -45*z
  22.       color_map {
  23.         [0 color Black]
  24.         [.5 color green .6]
  25.         [1 color White]
  26.       }
  27.     }
  28.     finish { ambient 1 }
  29.   }
  30. }
  31.